home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / faq / amigafaq.lha / AmigaFAQ / programmer / MUI_Request.c < prev    next >
C/C++ Source or Header  |  1994-07-28  |  417b  |  15 lines

  1. #include <clib/muimaster_protos.h>
  2. #ifdef AZTEC_C
  3. #include <pragmas/muimaster_lib.h>
  4. #endif
  5. #if defined(__SASC)  ||  defined(_DCC)  ||  defined(__MAXON__)
  6. #include <pragmas/muimaster_pragmas.h>
  7. #endif
  8.  
  9.  
  10. LONG MUI_Request(APTR app, APTR win, LONGBITS flags, char *title,
  11.          char *gadgets, char *format, ...)
  12. { return(MUI_RequestA(app, win, flags, title, gadgets, format,
  13.               ((STRPTR)(&format))+sizeof(format)));
  14. }
  15.